home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / matrixc.zip / 3DTEST.MAK < prev    next >
Text File  |  1990-05-10  |  203b  |  15 lines

  1. # Program: 3dtest
  2.  
  3. .c.obj:
  4.     cl -c -Ox $*.c
  5.  
  6. 3d.obj: 3d.c
  7.  
  8. matrix.obj: matrix.c
  9.  
  10. 3dtest.obj: 3dtest.c matrix.h 3d.h
  11.  
  12. 3dtest.exe: 3dtest.obj 3d.obj matrix.obj 
  13.     link 3dtest+3d+matrix;
  14.  
  15.